home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / i / imagefxv2.1a.lha / ImageFX / Rexx / AutoFX / SaveRenderedAs_FLC.ifx.pre < prev    next >
Text File  |  1996-03-02  |  921b  |  46 lines

  1. /*
  2.  * SaveRenderedAs_FLC.ifx.pre
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Save rendered image as ANIM frame.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number (?)
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. base = 'Autofx_SaveRendFLC_'
  19.  
  20. lastpath = GETCLIP(base||'Path')
  21. lastfile = GETCLIP(base||'File')
  22. lastpat  = GETCLIP(base||'Pat')
  23.  
  24. IF lastpath = "" THEN DO
  25.    GetPrefs RendPath
  26.    lastpath = result
  27.    END
  28.  
  29. RequestFile '"Save FLC Animation File:"' '"'lastpath'"' '"'lastfile'"' '"'lastpat'"'
  30. IF rc ~= 0 THEN EXIT rc
  31.  
  32. name = result
  33.  
  34. IF EXISTS(name) THEN DO
  35.    RequestResponse name 'exists.  Overwrite?'
  36.    IF rc ~= 0 THEN EXIT rc
  37.    ADDRESS COMMAND 'Delete "'name'"'
  38.    END
  39.  
  40. CALL SETCLIP(base||'Path',filereq.path)
  41. CALL SETCLIP(base||'File',filereq.file)
  42. CALL SETCLIP(base||'Pat',filereq.pat)
  43. CALL SETCLIP(base||'Name',name)
  44.  
  45. EXIT
  46.